home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
clearbuffer.ifx.pre
< prev
next >
Wrap
Text File
|
2004-08-03
|
533b
|
26 lines
/*
* Clear_Buffer.ifx.pre
* Saves the settings into the
* ImpClearBufferParameters clip variable.
*
* by Steve Tibbett
*/
Options Results
Defaults=GetClip("ImpClearBufferParameters"arg(1));
if (Defaults="") then Defaults="0 0 0"
Parse Var Defaults r g bl
Gadget.1 = 'I/125/17/Red:/'r
Gadget.2 = 'I/125/31/Green:/'g
Gadget.3 = 'I/125/45/Blue:/'bl
ComplexRequest '"Clear Buffer To..."' 3 Gadget 300 83
IF rc ~= 0 THEN return 10
Defaults=Result.1 Result.2 Result.3
call SetClip("ImpClearBufferParameters"arg(1), Defaults);